home *** CD-ROM | disk | FTP | other *** search
/ Tech Arsenal 1 / Tech Arsenal (Arsenal Computer).ISO / tek-01 / smailsrc.zip / SMAIL.ZIP / SWFIELDS.AWK < prev    next >
Text File  |  1990-04-02  |  363b  |  12 lines

  1. # swfields.awk:  Switch the three fields of pathalias output.
  2. #
  3. #   I wrote this to convert the pathalias output from my neighboring UNIX
  4. #   system into the format desired by smail.  It may or may not be useful
  5. #   to you, but I included it so you have it if needed.
  6. #
  7. #   Stephen Trier
  8. #   April 2, 1990
  9. #
  10.  
  11.     { printf "%s\t%s\t%s\n", $2, $3, $1 }
  12.